home *** CD-ROM | disk | FTP | other *** search
/ MacHack 1997 / MacHack 1997.toast / Hacks / Hacks ’96 / DragClick / Sources / ShowInitIcon.c < prev    next >
Text File  |  1996-06-21  |  6KB  |  162 lines

  1. // ShowInitIcon - version 1.0.1, May 30th, 1995
  2. // This code is intended to let INIT writers easily display an icon at startup time.
  3. // View in Geneva 9pt, 4-space tabs
  4.  
  5. // Written by: Peter N Lewis <peter@mail.peter.com.au>, Jim Walker <JWWalker@aol.com>
  6. // and François Pottier <pottier@dmi.ens.fr>, with thanks to previous ShowINIT authors.
  7. // Send comments and bug reports to François Pottier.
  8.  
  9. // This version features:
  10. // - Short and readable code.
  11. // - Correctly wraps around when more than one row of icons has been displayed.
  12. // - works with System 6
  13. // - Built with Universal Headers & CodeWarrior. Should work with other headers/compilers.
  14.  
  15. #include "ShowInitIcon.h"
  16.  
  17. #include <Memory.h>
  18. #include <Resources.h>
  19. #include <Icons.h>
  20. #include <OSUtils.h>
  21.  
  22. // You should set SystemSixOrLater in your headers to avoid including glue for SysEnvirons.
  23.  
  24. // ---------------------------------------------------------------------------------------------------------------------
  25. // Set this flag to 1 if you want to compile this file into a stand-alone resource (see note below).
  26. // Set it to 0 if you want to include this source file into your INIT project.
  27.  
  28. #if 1
  29. #define ShowInitIcon main
  30. #endif
  31.  
  32. // ---------------------------------------------------------------------------------------------------------------------
  33. // The ShowINIT mechanism works by having each INIT read/write data from these globals.
  34. // The MPW C compiler doesn't accept variables declared at an absolute address, so I use these macros instead.
  35. // Only one macro is defined per variable; there is no need to define a Set and a Get accessor like in <LowMem.h>.
  36.  
  37. #define    LMVCoord            (* (short*) 0x92A)
  38. #define    LMVCheckSum        (* (short*) 0x928)
  39. #define    LMHCoord            (* (short*) 0x92C)
  40. #define    LMHCheckSum        (* (short*) 0x92E)
  41.  
  42. // ---------------------------------------------------------------------------------------------------------------------
  43. // Prototypes for the subroutines. The main routine comes first; this is necessary to make THINK C's "Custom Header" option work.
  44.  
  45. static unsigned short CheckSum (unsigned short x);
  46. static void ComputeIconRect (Rect* iconRect, Rect* screenBounds);
  47. static void AdvanceIconPosition (Rect* iconRect);
  48. static void DrawBWIcon (short iconID, Rect *iconRect);
  49.  
  50. // ---------------------------------------------------------------------------------------------------------------------
  51. // Main routine.
  52.  
  53. typedef struct {
  54.     QDGlobals            qd;                                    // Storage for the QuickDraw globals
  55.     long                qdGlobalsPtr;                            // A5 points to this place; it will contain a pointer to qd
  56. } QDStorage;
  57.  
  58. pascal void ShowInitIcon (short iconFamilyID, Boolean advance)
  59. {
  60.     long                oldA5;                                // Original value of register A5
  61.     QDStorage            qds;                                    // Fake QD globals
  62.     CGrafPort            colorPort;
  63.     GrafPort            bwPort;
  64.     Rect                destRect;
  65.     SysEnvRec        environment;                            // Machine configuration.
  66.     
  67.     oldA5 = SetA5((long) &qds.qdGlobalsPtr);                        // Tell A5 to point to the end of the fake QD Globals
  68.     InitGraf(&qds.qd.thePort);                                // Initialize the fake QD Globals
  69.     
  70.     SysEnvirons(curSysEnvVers, &environment);                    // Find out what kind of machine this is
  71.  
  72.     ComputeIconRect(&destRect, &qds.qd.screenBits.bounds);            // Compute where the icon should be drawn
  73.  
  74.     if (environment.systemVersion >= 0x0700 && environment.hasColorQD) {
  75.         OpenCPort(&colorPort);
  76.         PlotIconID(&destRect, atNone, ttNone, iconFamilyID);
  77.         CloseCPort(&colorPort);
  78.     }
  79.     else {
  80.         OpenPort(&bwPort);
  81.         DrawBWIcon(iconFamilyID, &destRect);
  82.         ClosePort(&bwPort);
  83.     }
  84.     
  85.     if (advance)
  86.         AdvanceIconPosition (&destRect);
  87.         
  88.     SetA5(oldA5);                                             // Restore A5 to its previous value
  89. }
  90.  
  91. // ---------------------------------------------------------------------------------------------------------------------
  92. // A checksum is used to make sure that the data in there was left by another ShowINIT-aware INIT.
  93.  
  94. static unsigned short CheckSum (unsigned short x)
  95. {
  96.     return ((x << 1) | (x >> 15)) ^ 0x1021;
  97. }
  98.  
  99. // ---------------------------------------------------------------------------------------------------------------------
  100. // ComputeIconRect computes where the icon should be displayed.
  101.  
  102. static void ComputeIconRect (Rect* iconRect, Rect* screenBounds)
  103. {
  104.     if (CheckSum(LMHCoord) != LMHCheckSum)                    // If we are first, we need to initialize the shared data.
  105.         LMHCoord = 8;
  106.     if (CheckSum(LMVCoord) != LMVCheckSum)
  107.         LMVCoord = screenBounds->bottom - 40;
  108.     
  109.     if (LMHCoord + 34 > screenBounds->right) {                    // Check whether we must wrap
  110.         iconRect->left = 8;
  111.         iconRect->top = LMVCoord - 40;
  112.     }
  113.     else {
  114.         iconRect->left = LMHCoord;
  115.         iconRect->top = LMVCoord;
  116.     }
  117.     iconRect->right = iconRect->left + 32;
  118.     iconRect->bottom = iconRect->top + 32;
  119. }
  120.  
  121. // AdvanceIconPosition updates the shared global variables so that the next extension will draw its icon beside ours.
  122.  
  123. static void AdvanceIconPosition (Rect* iconRect)
  124. {
  125.     LMHCoord = iconRect->left + 40;                            // Update the shared data
  126.     LMVCoord = iconRect->top;
  127.     LMHCheckSum = CheckSum(LMHCoord);
  128.     LMVCheckSum = CheckSum(LMVCoord);
  129. }
  130.  
  131. // DrawBWIcon draws the 'ICN#' member of the icon family. It works under System 6.
  132.  
  133. static void DrawBWIcon (short iconID, Rect *iconRect)
  134. {
  135.     Handle        icon;
  136.     BitMap        source, destination;
  137.     GrafPtr        port;
  138.     
  139.     icon = Get1Resource('ICN#', iconID);
  140.     if (icon != NULL) {
  141.         HLock(icon);
  142.                                                         // Prepare the source and destination bitmaps.
  143.         source.baseAddr = *icon + 128;                        // Mask address.
  144.         source.rowBytes = 4;
  145.         SetRect(&source.bounds, 0, 0, 32, 32);
  146.         GetPort(&port);
  147.         destination = port->portBits;
  148.                                                         // Transfer the mask.
  149.         CopyBits(&source, &destination, &source.bounds, iconRect, srcBic, nil);
  150.                                                         // Then the icon.
  151.         source.baseAddr = *icon;
  152.         CopyBits(&source, &destination, &source.bounds, iconRect, srcOr, nil);
  153.     }
  154. }
  155.  
  156. // ---------------------------------------------------------------------------------------------------------------------
  157. // Notes
  158.  
  159. // Checking for PlotIconID:
  160. // We (PNL) now check for system 7 and colour QD, and use colour graf ports and PlotIconID only if both are true
  161. // Otherwise we use B&W grafport and draw using PlotBWIcon.
  162.